系統:ubuntu-22.04
需要安裝套件如下(Command):
int main()
{
printf("Hello, World!");
return 0;
}
how to complier
gcc -o helloworld helloworld.c[檔案名稱]
附上附圖
99乘法表:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char argv[])
{
int i, j;
for(i=1; i<10; i++)
{
for(j=1; j<10; j++)
{
printf(" %d%d=%2d ", i, j, i*j);
}
printf("\n");
}
system("PAUSE");
return 0;
}
附圖
參考來源:https://linuxhint.com/install-gcc-ubuntu22-04/